home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * $Id: term.h%v 3.50 1993/07/09 05:35:24 woo Exp $
- *
- */
-
- /* GNUPLOT - term.h */
- /*
- * Copyright (C) 1986 - 1993 Thomas Williams, Colin Kelley
- *
- * Permission to use, copy, and distribute this software and its
- * documentation for any purpose with or without fee is hereby granted,
- * provided that the above copyright notice appear in all copies and
- * that both that copyright notice and this permission notice appear
- * in supporting documentation.
- *
- * Permission to modify the software is granted, but not the right to
- * distribute the modified code. Modifications are to be distributed
- * as patches to released version.
- *
- * This software is provided "as is" without express or implied warranty.
- *
- *
- * AUTHORS
- *
- * Original Software:
- * Thomas Williams, Colin Kelley.
- *
- * Gnuplot 2.0 additions:
- * Russell Lang, Dave Kotz, John Campbell.
- *
- * Gnuplot 3.0 additions:
- * Gershon Elber and many others.
- *
- * There is a mailing list for gnuplot users. Note, however, that the
- * newsgroup
- * comp.graphics.gnuplot
- * is identical to the mailing list (they
- * both carry the same set of messages). We prefer that you read the
- * messages through that newsgroup, to subscribing to the mailing list.
- * (If you can read that newsgroup, and are already on the mailing list,
- * please send a message info-gnuplot-request@dartmouth.edu, asking to be
- * removed from the mailing list.)
- *
- * The address for mailing to list members is
- * info-gnuplot@dartmouth.edu
- * and for mailing administrative requests is
- * info-gnuplot-request@dartmouth.edu
- * The mailing list for bug reports is
- * bug-gnuplot@dartmouth.edu
- * The list of those interested in beta-test versions is
- * info-gnuplot-beta@dartmouth.edu
- */
-
- /*
- * term.h: terminal support definitions
- * Edit this file depending on the set of terminals you wish to support.
- * Comment out the terminal types that you don't want or don't have, and
- * uncomment those that you want included. Be aware that some terminal
- * types (eg, SUN, UNIXPLOT) will require changes in the makefile
- * LIBS definition.
- */
-
- /* These terminals can be used on any system */
- #define DXF /* DXF format for use with AutoCad (Release 10.x) */
-
- #define EEPIC /* EEPIC-extended LaTeX driver, for EEPIC users */
- #define EMTEX /* LATEX picture environment with EMTEX specials */
- #define GPIC /* gpic for groff */
- #define LATEX /* LATEX picture environment */
- #define MF /* METAFONT driver */
- #define PBM /* PBMPLUS portable bitmap */
- #define PCL /* orignal HP LaserJet III */
- #define POSTSCRIPT /* PostScript */
- #define PSLATEX /* LaTeX picture environment with PostScript \specials */
- #define PSTRICKS /* LaTeX picture environment with PSTricks macros */
- #define TEXDRAW /* TeXDraw drawing package for LaTeX */
- #define TPIC /* TPIC specials for TeX */
-
- /* These are for Amiga only */
- #if defined(AMIGA_SC_6_1) || defined(AMIGA_AC_5)
- #define AMIGASCREEN /* Amiga custom screen */
- #undef AIFM
- #undef DXF
- #undef FIG
- #undef MIF
- #endif
-